home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / crt0 / envtest.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-21  |  195 b   |  15 lines

  1. #include <stdio.h>
  2.  
  3. #include "glob.h"
  4.  
  5. extern char **environ;
  6.  
  7. int
  8. main(int argc, char **argv)
  9. {
  10.   int i;
  11.   for (i=0; environ[i]; i++)
  12.     printf("%s\n", environ[i]);
  13.   return 0;
  14. }
  15.